home *** CD-ROM | disk | FTP | other *** search
- TABLE OF CONTENTS
-
- Listview.mui/Listview.mui
- Listview.mui/MUIA_Listview_DoubleClick
- Listview.mui/MUIA_Listview_Input
- Listview.mui/MUIA_Listview_List
- Listview.mui/MUIA_Listview_MultiSelect
- Listview.mui/MUIA_Listview_SelectChange
- Listview.mui/Listview.mui
-
- It's important to know that MUI makes a difference
- between a list and a listview. A list is just a
- collection of some entries and is part of a listview,
- which attaches a scrollbar and input handling to
- the list.
-
- During object creation time, you have to be careful
- not specifying listview tags for the list object
- or list tags for the listview object, both versions
- won't work. Once the objects are setup, you can
- of course talk to the listview as if it was the
- list directly.
- Listview.mui/MUIA_Listview_DoubleClick
-
- NAME
- MUIA_Listview_DoubleClick -- [I.G], BOOL
-
- FUNCTION
- This attribute is set to TRUE whenever the user
- double clicks on an entry in the list.
-
- SEE ALSO
- MUIA_Listview_SelectChange
- Listview.mui/MUIA_Listview_Input
-
- NAME
- MUIA_Listview_Input -- [I..], BOOL
-
- FUNCTION
- Setting this to FALSE will result in a read only
- list view. Defaults to TRUE.
-
- SEE ALSO
- MUIA_Listview_MultiSelect
- Listview.mui/MUIA_Listview_List
-
- NAME
- MUIA_Listview_List -- [I..], Object *
-
- FUNCTION
- Every listview needs a list object as child.
- Specify it here.
-
- As every other child, it will get disposes when
- its parent object is disposed.
-
- EXAMPLE
- ListviewObject,
- MUIA_Listview_Input, FALSE,
- MUIA_Listview_List , ListObject,
- ReadListFrame,
- MUIA_List_Format , ",,",
- End,
- End;
-
- SEE ALSO
- MUIA_Listview_Input
- Listview.mui/MUIA_Listview_MultiSelect
-
- NAME
- MUIA_Listview_MultiSelect -- [I..], BOOL
-
- FUNCTION
- Set this to TRUE if you want your listview to be able
- to multi select.
-
- SEE ALSO
- MUIA_List_MultiTestHook
- Listview.mui/MUIA_Listview_SelectChange
-
- NAME
- MUIA_Listview_SelectChange -- [..G], BOOL
-
- FUNCTION
- This attribute is set to TRUE whenever the selection state
- of one or more items in the list is changing. You can
- use this e.g. if you want to display the number of
- selected items in a status line.
-
- SEE ALSO
- MUIA_List_MultiSelect
-